home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 July & August / PCWorld_2006-07-08_cd.bin / v cisle / acehtml / acehtmlfreeware.exe / scriptdef / Email Address Validator.sd < prev    next >
INI File  |  2004-06-28  |  1KB  |  55 lines

  1. [SUBJECT]
  2. Description=Validate Email address
  3. ImageIndex=-1
  4. Folder=Tools
  5.  
  6.  
  7. [HEAD_TEXT]
  8. ;<!-- Cut-N-Paste JavaScript from ISN Toolbox 
  9. ;
  10. ;Copyright 1996, Infohiway Server Network.  Restricted use is hereby
  11. ;
  12. ;granted (both personal and commercial use OK so long as this code is 
  13. ;
  14. ;not *directly* sold), providing this notice is buried somewhere deep
  15. ;
  16. ;in your HTML document.  A link to http://www.infohiway.com is always 
  17. ;
  18. ;appreciated, but is absolutely and positively not necessary. :-) -->
  19. ;
  20. ;
  21. ;<script language="JavaScript">
  22. ; /* This is, at best, a perfunctory test of email address 
  23. ;    entry validity.  Is there an "@" sign and sufficient
  24. ;    letters prefixing it. Alert user if questioned. */
  25. ; function emailCheck() {
  26. ;  txt=document.isn.email.value;
  27. ;  if (txt.indexOf("@")<3){
  28. ;   alert("I'm sorry. This email address seems wrong. Please"
  29. ;   +" check the prefix and '@' sign.");
  30. ;   return false;
  31. ;  }
  32. ;  return true;
  33. ; }
  34. ;
  35. ;</script>
  36.  
  37.  
  38.  
  39. [BODY_TEXT]
  40. ;<form name="isn" onSubmit="return emailCheck()">
  41. ;
  42. ;`Caption`<br>
  43. ;<input type="text" name="email" size="40" value="" onBlur="emailCheck()"><br><br>
  44. ;
  45. ;<input type="submit" name="html1" value=" Submit ">
  46. ;
  47. ;</form>
  48.  
  49.  
  50. [`Caption`]
  51. Kind=S
  52. Value=Email checker:
  53.  
  54.  
  55.